-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate Extrude AST mod from XState action to actor #5146
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
QA Wolf here! As you write new code it's important that your test coverage is keeping up. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5146 +/- ##
=======================================
Coverage 85.94% 85.94%
=======================================
Files 90 90
Lines 32718 32718
=======================================
Hits 28121 28121
Misses 4597 4597
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice use of fromPromise, and good job migrating yet another action to actor :) I've approved in case you think my comments are not applicable / necessary
cdbc788
to
68efa18
Compare
Snapshots lying |
5b6bcd8
to
68efa18
Compare
4e2edf0
to
2f868ec
Compare
Part of our drive to clean up incorrect usage of XState to eliminate race conditions in the app. Actions never await or are asynchronous, so the async callback within this action was never properly handled.
This change was also made as a part of #5045 but I've broken it out here in case this can get in sooner and @adamchalmers can benefit from it for his kwargs work.